home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / ncurses-5.3 / ncurses / tinfo / make_keys.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  4.3 KB  |  141 lines

  1. /****************************************************************************
  2.  * Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *  Author: Thomas E. Dickey <dickey@clark.net> 1997                        *
  31.  ****************************************************************************/
  32.  
  33. /*
  34.  * This replaces an awk script which translated keys.list into keys.tries by
  35.  * making the output show the indices into the TERMTYPE Strings array.  Doing
  36.  * it that way lets us cut down on the size of the init_keytry() function.
  37.  */
  38. #include <curses.priv.h>
  39.  
  40. MODULE_ID("$Id: make_keys.c,v 1.10 2000/12/10 02:55:08 tom Exp $")
  41.  
  42. #include <names.c>
  43.  
  44. #define UNKNOWN (SIZEOF(strnames) + SIZEOF(strfnames))
  45.  
  46. static size_t
  47. lookup(const char *name)
  48. {
  49.     size_t n;
  50.     bool found = FALSE;
  51.     for (n = 0; strnames[n] != 0; n++) {
  52.     if (!strcmp(name, strnames[n])) {
  53.         found = TRUE;
  54.         break;
  55.     }
  56.     }
  57.     if (!found) {
  58.     for (n = 0; strfnames[n] != 0; n++) {
  59.         if (!strcmp(name, strfnames[n])) {
  60.         found = TRUE;
  61.         break;
  62.         }
  63.     }
  64.     }
  65.     return found ? n : UNKNOWN;
  66. }
  67.  
  68. static void
  69. make_keys(FILE * ifp, FILE * ofp)
  70. {
  71.     char buffer[BUFSIZ];
  72.     char from[BUFSIZ];
  73.     char to[BUFSIZ];
  74.     int maxlen = 16;
  75.  
  76.     while (fgets(buffer, sizeof(buffer), ifp) != 0) {
  77.     if (*buffer == '#')
  78.         continue;
  79.     if (sscanf(buffer, "%s %s", to, from) == 2) {
  80.         int code = lookup(from);
  81.         if (code == UNKNOWN)
  82.         continue;
  83.         if ((int) strlen(from) > maxlen)
  84.         maxlen = strlen(from);
  85.         fprintf(ofp, "\t{ %4d, %-*.*s },\t/* %s */\n",
  86.             code,
  87.             maxlen, maxlen,
  88.             to,
  89.             from);
  90.     }
  91.     }
  92. }
  93.  
  94. static void
  95. write_list(FILE * ofp, const char **list)
  96. {
  97.     while (*list != 0)
  98.     fprintf(ofp, "%s\n", *list++);
  99. }
  100.  
  101. int
  102. main(int argc, char *argv[])
  103. {
  104.     static const char *prefix[] =
  105.     {
  106.     "#ifndef NCU_KEYS_H",
  107.     "#define NCU_KEYS_H 1",
  108.     "",
  109.     "/* This file was generated by MAKE_KEYS */",
  110.     "",
  111.     "#if BROKEN_LINKER",
  112.     "static",
  113.     "#endif",
  114.     "struct tinfo_fkeys _nc_tinfo_fkeys[] = {",
  115.     0
  116.     };
  117.     static const char *suffix[] =
  118.     {
  119.     "\t{ 0, 0} };",
  120.     "",
  121.     "#endif /* NCU_KEYS_H */",
  122.     0
  123.     };
  124.  
  125.     write_list(stdout, prefix);
  126.     if (argc > 1) {
  127.     int n;
  128.     for (n = 1; n < argc; n++) {
  129.         FILE *fp = fopen(argv[n], "r");
  130.         if (fp != 0) {
  131.         make_keys(fp, stdout);
  132.         fclose(fp);
  133.         }
  134.     }
  135.     } else {
  136.     make_keys(stdin, stdout);
  137.     }
  138.     write_list(stdout, suffix);
  139.     return EXIT_SUCCESS;
  140. }
  141.